Trusted medical advice written by verified doctors.
{# ---- MAIN COLUMN (Grid) ---- #}
{% if search %}Results for "{{ search }}"{% else %}Latest Articles{% endif %}
({{ blogs.total }})
{% if blogs.total and blogs.pages > 1 %}
Page {{ blogs.page }} of {{ blogs.pages }} · 6 per page
{% endif %}
{% if session.user_role == 'doctor' %}
Write
{% endif %}
{% if blogs.items %}
{% macro cat_class(blog) %}
{% set cat = blog.category.lower() if blog.category else 'general' %}
{% if 'cardio' in cat %}cat-cardiology
{% elif 'neuro' in cat %}cat-neurology
{% elif 'nutri' in cat or 'diet' in cat %}cat-nutrition
{% elif 'derm' in cat or 'skin' in cat %}cat-dermatology
{% elif 'pedia' in cat or 'child' in cat %}cat-pediatrics
{% elif 'psych' in cat or 'mental' in cat %}cat-psychiatry
{% elif 'ortho' in cat or 'bone' in cat %}cat-orthopedics
{% else %}cat-default
{% endif %}
{% endmacro %}
{% macro cat_icon(blog) %}
{% set cat = blog.category.lower() if blog.category else 'general' %}
{% if 'cardio' in cat %}fa-heartbeat
{% elif 'neuro' in cat %}fa-brain
{% elif 'nutri' in cat or 'diet' in cat %}fa-apple-alt
{% elif 'derm' in cat or 'skin' in cat %}fa-allergies
{% elif 'pedia' in cat or 'child' in cat %}fa-baby
{% elif 'psych' in cat or 'mental' in cat %}fa-smile-beam
{% elif 'ortho' in cat or 'bone' in cat %}fa-bone
{% else %}fa-file-medical
{% endif %}
{% endmacro %}